@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;700;800&family=Outfit:wght@300;400;500&display=swap');

:root {
    --bg: #0d090f;           
    --surface: #1A1008;      
    --card: #1e161d;         
    --border: #3a1e21;       
    --gold: #C060FF;        
    --gold-dim: #7A30C0;     
    --text: #FFE8CC;         
    --muted: #8C7060;       
    --accent: #FF7A20;      
}

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    background-image: url('../Assets/Img/Default Background.png');
    background-size: 100%;
    background-position: center bottom;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    font-size: large;
    font-weight: 300;
    line-height: 1.4;
    overflow-x: hidden;
    margin: 0;
}

main{
  padding:7rem 5rem 5rem 5rem;
}

section {
    padding: 0 0 4rem;
}

h1, h2, h4, h5, h6 {
    color: var(--gold);
}

h2 {
    font-size: 2.5rem;
    line-height: 1;
    margin: 0;
}

h3 {
    color: var(--accent);
}

hr {
    border: none;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--muted), transparent);
    margin-top: 2rem;
    margin-bottom: 2rem;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.1rem 6rem;
    background: var(--bg);
    backdrop-filter: blur(12px);
    border-bottom: 4px solid var(--border);
    box-shadow: 0 4px black;
}

.nav-logo {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--gold);
    letter-spacing: .04em;
}

.nav-logo-img {
    height: 47px;
}

.nav-logo-img:hover {
    filter: invert(1) sepia(1) saturate(3) hue-rotate(200deg) brightness(1.2);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0.5rem;
    padding: 0;
    align-items: center;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-size: .75rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    transition: color .1s;
}
.nav-links li {
    transition: transform .15s;
}

.nav-links a:hover { color: var(--gold); }

.nav-links li:hover { transform: translateY(-5px); }

/* Language Switch */
.language-switch {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    user-select: none;
}
 
.language-switch input {
    display: none;
}
 
.language-slider {
    position: relative;
    width: 110px;
    height: 34px;
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 34px;
    transition: background 0.3s, border-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 4px black;
}
 
.language-slider::before {
    content: '';
    position: absolute;
    left: 3px;
    width: 26px;
    height: 26px;
    background: var(--muted);
    border-radius: 50%;
    transition: transform 0.3s, background 0.3s;
    z-index: 2;
}
 
.language-switch input:checked + .language-slider {
    background: var(--border);
    border-color: var(--gold);
    box-shadow: 0 4px var(--gold);
}
 
.language-switch input:checked + .language-slider::before {
    transform: translateX(76px);
    background: var(--gold);
}
 
.language-label-off,
.language-label-on {
    position: absolute;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: .05em;
    transition: opacity 0.3s;
    z-index: 1;
}
 
.language-label-off {
    right: 8px;
    color: var(--muted);
    opacity: 1;
}
 
.language-label-on {
    left: 8px;
    color: var(--gold);
    opacity: 0;
}
 
.language-switch input:checked + .language-slider .language-label-off { opacity: 0; }
.language-switch input:checked + .language-slider .language-label-on  { opacity: 1; }
 

/* ── POST ── */
#post {
    display: grid;
    grid-template-columns: 1fr 3fr;
    align-items: start;
    gap: 1rem;
}

.post-content {
    text-align: center;
    background: var(--bg);
    border: 10px solid var(--border);
    border-radius: 20px;
    padding: 1rem 3rem 3rem 3rem;
    box-shadow: 0 10px black;
}

.post-content img {
    width: 100%;
    border: none;
    border-radius: 30px;
    box-shadow: 0 10px black;
    border: 6px solid var(--gold);
    box-shadow: 0 10px black;
}

.post-content h2{
    color: var(--accent);
}

.post-about {
    background: var(--bg);
    border: 10px solid var(--border);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 10px black;
}

.post-about h2 {
    text-align: center;
    margin-bottom: 0.1rem;
}

.post-about p {
    font-size: smaller;
}

.profile-artist {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    margin-top: -1.5rem;
}

.profile-artist a {
    text-decoration: none;
    color: var(--text);
}

.profile-artist a:hover {
    color: var(--gold);
}

.profile-artist a:visited {
    text-decoration: none;
}

.profile-artist p {
    font-size: small;
    margin-top: -1rem;
}

.profile-artist img{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    box-shadow: 0 6px black;
    border: 3px solid var(--accent);
}

.about-details {
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 0.5rem;  
}

.about-details p {
    margin: 0.2rem;
}

.about-links {
    /* display: grid;
    grid-template-columns: 1fr 1fr; */
    align-content: center;
    justify-items: center;
}

.about-links img {
    width: 100%;
    /* margin-left: 5%; */
    border-radius: 3px;
    transition: filter 0.2s ease;
}

.about-links a:hover img {
    filter: brightness(2) drop-shadow(0 0 5px var(--gold));
    top: 1rem;
}

.details-column {
    color: var(--muted);
}

.hide-content h3{
    font-size: 1.8rem;
    color: var(--gold);
}

.hide-content img {
    border: 6px solid var(--accent);
}

.fullscreen-overlay{
    display:none; 
    position:fixed; 
    top:0; 
    left:0; 
    width:100%; 
    height:100%; 
    background:rgba(0,0,0,0.9); 
    z-index:9999; 
    align-items:center; 
    justify-content:center;
    border: none;
}

.fullscreen-overlay img{
    border: none;
    box-shadow: 0 0 black;
    max-width:90%; 
    max-height:90%; 
    object-fit:contain;
}

/* Botones */
.btn {
    padding: .75rem 1.8rem;
    font-size: .75rem;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all .1s;
    border-radius: 5px;
}

.btn-primary {
    background: var(--gold);
    color: var(--bg);
    font-weight: 500;
    font-weight: bold;
    box-shadow: 0 5px black;
}

.btn-primary:hover {
    background: var(--accent);
    border: 2px solid var(--gold-dim);
    transform: translateY(-5px);
    box-shadow: 0 5px var(--gold-dim);
}

.btn-primary:active {
  color: var(--muted);
  background-color: var(--card);
  border: 2px solid var(--muted);
  box-shadow: 0 5px var(--muted);
  transform: scale(1);
}

.btn-secondary {
    background: var(--accent);
    color: var(--bg);
    font-weight: 500;
    font-weight: bold;
    box-shadow: 0 5px black;
}

.btn-secondary:hover {
    background: var(--gold);
    border: 2px solid var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 5px var(--accent);
}

.btn-secondary:active {
  color: var(--muted);
  background-color: var(--card);
  border: 2px solid var(--muted);
  box-shadow: 0 5px var(--muted);
  transform: scale(1);
}

.btn-outline {
    font-weight: bold;
    background: transparent;
    color: var(--text);
    border: 2px solid var(--gold);
    border-radius: 5px;
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--gold);
}

.btn-outline:active {
  color: var(--muted);
  background-color: var(--card);
  border: 2px solid var(--muted);
  box-shadow: 0 5px var(--muted);
  transform: scale(1);
}

/* ── GALLERY ── */

.gallery-title {
    /* display: flex; */
    align-items: center;
    text-align: center;
    background: var(--bg);
    border: 10px solid var(--border);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 6px black;
    /* margin: 0 30rem 0 30rem; */
}

.gallery-grid a {
    text-decoration: none;
}
.gallery-grid a:visited {
    text-decoration: none;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  align-items: center;
  gap: 0.5rem;
}

.NSFW-tag {
    position: absolute;
    margin: 0;
    font-weight: bold;
    font-size: 1.2rem;
    z-index: 10;
    background: var(--card);
    color: var(--accent);
    padding: 0.1rem 0.5rem 0 0.5rem;
    border-bottom-right-radius: 10px;
}

.gallery-card {
  background: var(--card);
  border: none;
  padding: 0.4rem 0.4rem 0 0.4rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 6px #000000;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  border-radius: 10px;
  display: block;
}

.gallery-icon {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-icon:after {
  width: 100%;
  content: "Click here";
  position: absolute;
  top: 48%;
  left: 49.8%;
  transform: translate(-50%, -50%);
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--accent);
  padding: 44% 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
  background-color: #1e161db0;
  border-radius: 10px;
}
 
.gallery-card:hover {
  background-color: var(--border);
  border: 2px solid var(--gold);
  box-shadow: 0 10px var(--gold);
  transform: scale(1.05);
}
 
.gallery-card:active {
  background-color: var(--accent);
  border: 2px solid var(--border);
  box-shadow: 0 5px var(--border);
  transform: scale(1);
}
 
.gallery-icon:hover::after {
  opacity: 1;
}
 
 
.gallery-contend {
  padding: 0.4rem 0.3rem 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
 
.gallery-contend h3 {
    font-size: 0.9rem;
    margin: 0;
    color: var(--gold);
    /* clamp a 2 líneas */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
    min-height: 2.1em; 
}

.gallery-contend h3:last-child {
    color: var(--text);
    font-size: 0.72rem;
    font-weight: 400;
    min-height: unset;
    -webkit-line-clamp: 1;
}

/* ── NSFW TOGGLE ── */
 
.NSFW-card {
    display: none;
}
 
.gallery-title {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
 
/* Switch */
.nsfw-switch {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    user-select: none;
}
 
.nsfw-switch input {
    display: none;
}
 
.nsfw-slider {
    position: relative;
    width: 110px;
    height: 34px;
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 34px;
    transition: background 0.3s, border-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 4px black;
}
 
.nsfw-slider::before {
    content: '';
    position: absolute;
    left: 3px;
    width: 26px;
    height: 26px;
    background: var(--muted);
    border-radius: 50%;
    transition: transform 0.3s, background 0.3s;
    z-index: 2;
}
 
.nsfw-switch input:checked + .nsfw-slider {
    background: var(--border);
    border-color: var(--accent);
    box-shadow: 0 4px var(--accent);
}
 
.nsfw-switch input:checked + .nsfw-slider::before {
    transform: translateX(76px);
    background: var(--accent);
}
 
.nsfw-label-off,
.nsfw-label-on {
    position: absolute;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: .05em;
    transition: opacity 0.3s;
    z-index: 1;
}
 
.nsfw-label-off {
    right: 8px;
    color: var(--muted);
    opacity: 1;
}
 
.nsfw-label-on {
    left: 8px;
    color: var(--accent);
    opacity: 0;
}
 
.nsfw-switch input:checked + .nsfw-slider .nsfw-label-off { opacity: 0; }
.nsfw-switch input:checked + .nsfw-slider .nsfw-label-on  { opacity: 1; }
 
/* Modal */
.nsfw-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    backdrop-filter: blur(4px);
}
 
.nsfw-modal-box {
    background: var(--card);
    border: 3px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    max-width: 480px;
    width: 100%;
    box-shadow: 0 20px 60px black;
    animation: fadeSlide 0.25s ease;
}
 
.nsfw-modal-icon {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
}
 
.nsfw-modal-box h3 {
    text-align: center;
    font-size: 1.3rem;
    margin: 0 0 1rem;
    color: var(--accent);
}
 
.nsfw-modal-box p {
    font-size: 0.9rem;
    color: var(--text);
    margin: 0 0 0.5rem;
}
 
.nsfw-modal-box ul {
    margin: 0 0 1rem 1.2rem;
    padding: 0;
    font-size: 0.88rem;
    color: var(--text);
    line-height: 1.8;
}
 
.nsfw-modal-note {
    font-size: 0.78rem !important;
    color: var(--muted) !important;
    border-top: 1px solid var(--border);
    padding-top: 0.75rem;
    margin-top: 0.5rem !important;
}
 
.nsfw-modal-buttons {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.3rem;
    flex-wrap: wrap;
}
 
.nsfw-modal-buttons .btn {
    flex: 1;
    text-align: center;
}
 
@media (max-width: 480px) {
    .nsfw-modal-box { padding: 1.5rem; }
    .nsfw-modal-buttons { flex-direction: column; }
}

/* ── CONTACT ── */

#contact {
    background: var(--bg);
    border: 10px solid var(--border);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 10px black;
}

/* ── COMMENTS ── */

#comments {
    background: var(--bg);
    border: 10px solid var(--border);
    border-radius: 20px;
    padding: 2rem 3rem 3rem;
    box-shadow: 0 10px black;
}

.comments-title {
    margin-bottom: 1.5rem;
}

.comments-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* Lista */
.comments-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comments-loading {
    display: flex;
    gap: 8px;
    justify-content: center;
    padding: 2rem;
}

.loading-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold);
    animation: bounce 0.8s infinite alternate;
}
.loading-dot:nth-child(2) { animation-delay: 0.2s; }
.loading-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes bounce {
    from { transform: translateY(0); opacity: 0.3; }
    to   { transform: translateY(-10px); opacity: 1; }
}

/* Tarjeta de comentario */
.comment-card {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 1.1rem 1.4rem;
    box-shadow: 0 4px black;
    animation: fadeSlide 0.35s ease both;
    transition: border-color 0.2s, transform 0.2s;
}

.comment-card:hover {
    border-color: var(--gold-dim);
    transform: translateY(-3px);
}

@keyframes fadeSlide {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.7rem;
}

.comment-avatar-img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--gold-dim);
    box-shadow: 0 3px black;
}

.comment-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.comment-author-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--gold);
}

.comment-date {
    font-size: 0.75rem;
    color: var(--muted);
}

.comment-body {
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--text);
    white-space: pre-wrap;
    word-break: break-word;
}

.no-comments-msg {
    text-align: center;
    color: var(--muted);
    padding: 2rem;
    font-size: 0.9rem;
    font-style: italic;
}

/* Formulario */
.comment-form-wrapper {
    background: var(--card);
    border: 5px solid var(--border);
    border-radius: 14px;
    padding: 1.8rem;
    box-shadow: 0 6px black;
}

.form-title {
    margin: 0 0 1.3rem 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
}

.comment-form {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
}

.comment-form input,
.comment-form textarea {
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    resize: vertical;
}

.comment-form input:focus,
.comment-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(192, 96, 255, 0.15);
}

.comment-form input::placeholder,
.comment-form textarea::placeholder {
    color: var(--muted);
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.char-count {
    font-size: 0.78rem;
    color: var(--muted);
}

/* Mensaje de estado */
.form-msg {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.88rem;
    margin-bottom: 0.6rem;
}
.form-msg.success {
    background: rgba(80, 200, 120, 0.1);
    border: 2px solid rgba(80, 200, 120, 0.35);
    color: #6fcf97;
}
.form-msg.error {
    background: rgba(235, 87, 87, 0.1);
    border: 2px solid rgba(235, 87, 87, 0.35);
    color: #eb5757;
}

/* Responsive comentarios */
@media (max-width: 768px) {
    #comments { padding: 1.5rem; border-width: 6px; }
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    #comments { padding: 1.2rem; border-radius: 14px; }
    .comment-form-wrapper { padding: 1.2rem; }
    .form-footer { flex-direction: column; align-items: flex-start; }
}

/* ── LANGUAGE SWITCH ── */

.language-switch {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    user-select: none;
}

.language-switch input {
    display: none;
}

.language-slider {
    position: relative;
    width: 110px;
    height: 34px;
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 34px;
    transition: background 0.3s, border-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 4px black;
}

.language-slider::before {
    content: '';
    position: absolute;
    left: 3px;
    width: 26px;
    height: 26px;
    background: var(--muted);
    border-radius: 50%;
    transition: transform 0.3s, background 0.3s;
    z-index: 2;
}

.language-switch input:checked + .language-slider {
    background: var(--border);
    border-color: var(--gold);
    box-shadow: 0 4px var(--gold-dim);
}

.language-switch input:checked + .language-slider::before {
    transform: translateX(76px);
    background: var(--gold);
}

.language-label-off,
.language-label-on {
    position: absolute;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: .04em;
    transition: opacity 0.3s;
    z-index: 1;
}

.language-label-off {
    right: 6px;
    color: var(--muted);
    opacity: 1;
}

.language-label-on {
    left: 6px;
    color: var(--gold);
    opacity: 0;
}

.language-switch input:checked + .language-slider .language-label-off { opacity: 0; }
.language-switch input:checked + .language-slider .language-label-on  { opacity: 1; }

  /* ── FOOTER ── */
footer {
    display: flex;
    width: 100%;
    margin: 0;
    justify-content: center;
    align-items: center;
    background: var(--bg);
    padding: 1.5rem 2rem;
    box-sizing: border-box;
    border-top: 6px solid var(--border);
}


  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }

  @keyframes spin {
    to { transform: rotate(360deg); }
  }


/* ══════════════════════════════════════
   HAMBURGER MENU
══════════════════════════════════════ */

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
    z-index: 200;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--gold);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ══════════════════════════════════════
   RESPONSIVE — art post
══════════════════════════════════════ */

/* ── 1024px — tablet landscape ── */
@media (max-width: 1024px) {
    body { background-size: cover; }
    main { padding: 5rem 2rem 3rem; }

    nav { padding: 0.1rem 2rem; }

    #post {
        grid-template-columns: 1fr 2fr;
    }

    #comments {
        padding: 1.5rem 2rem 2rem;
    }
}

/* ── 768px — tablet portrait ── */
@media (max-width: 768px) {
    body { background-size: cover; }
    main { padding: 4.5rem 1.5rem 2rem; }

    nav { padding: 0.5rem 1.5rem; }

    /* Nav hamburguesa */
    .nav-toggle { display: flex; }

    .nav-links {
        display: none;
        flex-direction: column;
        gap: 0;
        position: fixed;
        top: 0; left: 0; right: 0;
        background: var(--bg);
        border-bottom: 4px solid var(--border);
        padding: 5rem 2rem 2rem;
        z-index: 150;
    }

    .nav-links.open { display: flex; }

    .nav-links li {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border);
    }

    .nav-links li:last-child { border-bottom: none; }

    .nav-links a {
        font-size: 1rem;
        letter-spacing: .1em;
    }

    /* Post: columna única, about arriba */
    #post {
        grid-template-columns: 1fr;
    }

    .post-about {
        order: 2; /* contenido primero, about debajo */
    }

    .post-content {
        order: 1;
        padding: 1.5rem;
        border-width: 6px;
        border-radius: 14px;
    }

    .post-content h2 { font-size: 1.8rem; }

    #comments {
        padding: 1.2rem 1.5rem 1.5rem;
        border-width: 6px;
        border-radius: 14px;
    }
}

/* ── 480px — mobile ── */
@media (max-width: 480px) {
    body { background-size: cover; }
    main { padding: 4rem 1rem 1.5rem; }

    nav { padding: 0.5rem 1rem; }

    .nav-logo { font-size: 0.85rem; }

    #post { gap: 0.8rem; }

    .post-content {
        padding: 1rem;
        border-width: 4px;
        border-radius: 12px;
    }

    .post-content h2 { font-size: 1.5rem; }

    .post-content img {
        border-width: 4px;
        border-radius: 16px;
    }

    .post-about {
        padding: 1rem;
        border-width: 4px;
        border-radius: 12px;
    }

    .post-about h2 { font-size: 1.6rem; }
    
    .profile-artist img {
        width: 48px;
        height: 48px;
    }

    .about-details {
        grid-template-columns: auto 1fr;
        gap: 0.5rem;
    }
    
    .about-links {
        display: grid;
        grid-template-columns: 1fr 1fr; 
        align-content: center;
        justify-items: center;
    }

    #comments {
        padding: 1rem;
        border-width: 4px;
        border-radius: 12px;
    }

    .comment-form-wrapper { padding: 1rem; }

    .form-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .form-footer .btn { width: 100%; text-align: center; }
    
    footer { padding: 1rem; font-size: 0.85rem; }
}